Conditional Branching
Command Prototype
`If expression
Else
End If`
Command Description
If the expression evaluates to true, execute the "Yes" block. Otherwise, execute the "No" block. A conditional can also have multiple ElseIf branches. Else and ElseIf branches can be omitted.
Parameter Description
- Required Parameter
- expression--The expression used to evaluate a conditional